diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-12-03 18:39:08 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-12-03 18:39:08 +0900 |
| commit | bf3a801245a0be1d9001ee106e48cbf8b4bc73df (patch) | |
| tree | 2608770bedc66c8cc5baed98306486d7dac6a6d4 /app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx | |
| parent | 2f02e9ea125c3ec42afac84ec903767930335dd3 (diff) | |
(임수민) 페이지 타이틀과 메뉴명 일치 작업
Diffstat (limited to 'app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx b/app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx index c10a41ea..75796b98 100644 --- a/app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx +++ b/app/[lng]/evcp/(evcp)/(system)/integration-log/page.tsx @@ -7,12 +7,16 @@ import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"; import { SearchParamsCache } from "@/lib/integration-log/validations"; import { getIntegrationLogs } from "@/lib/integration-log/service"; import { IntegrationLogTable } from "@/lib/integration-log/table/integration-log-table"; +import { useTranslation } from "@/i18n"; interface IntegrationLogPageProps { + params: Promise<{ lng: string }> searchParams: Promise<SearchParams>; } export default async function IntegrationLogPage(props: IntegrationLogPageProps) { + const { lng } = await props.params + const { t } = await useTranslation(lng, 'menu') const searchParams = await props.searchParams; const search = SearchParamsCache.parse(searchParams); const validFilters = getValidFilters(search.filters); @@ -28,10 +32,9 @@ export default async function IntegrationLogPage(props: IntegrationLogPageProps) <Shell className="gap-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight">인터페이스 이력 조회</h2> - <p className="text-muted-foreground"> - 인터페이스 실행 이력을 조회합니다. 검색, 필터링, 정렬이 가능합니다. - </p> + <h2 className="text-2xl font-bold tracking-tight"> + {t('menu.information_system.integration_log')} + </h2> </div> </div> <React.Suspense fallback={<Skeleton className="h-7 w-52" />}></React.Suspense> @@ -50,4 +53,4 @@ export default async function IntegrationLogPage(props: IntegrationLogPageProps) </React.Suspense> </Shell> ); -}
\ No newline at end of file +} |
